Skip to main content

Row Question

AutomatR.GoogleForms.Activities.RowQuestion

The "Row Question" activity in AutomatR is part of the Google Forms activities package, allowing you to create a new row question within a Google Form. This activity streamlines the process of adding row-based questions with customizable options, enhancing the efficiency of form creation workflows.

Properties

NameDescription
Input
Form IDThe unique identifier of the Google Form to which the row question should be added. Only supports strings or string variables. This is a required field.
TitleThe title of the row question. String variables containing the question title. This is a required field.
DescriptionThe description or additional information for the row question. String variables containing the question description.
RequiredSpecifies whether the question is required or not. It is a boolean value.
LocationThe location or position where the question should be created within the form. It is an integer value.
OptionsThe options available for the row question. Provide options in a comma-separated format (e.g., 'option1, option2, option3'). This is a required field.
Question TitlesThe titles of individual row questions. Provide titles in a comma-separated format (e.g., 'title1, title2, title3'). This is a required field.
Row Question TypeSelect the type of row question.
Misc
Display NameProvides a customizable name for the activity displayed in the workflow. The display name enhances clarity and organization within the automation project. String variables containing the desired display name.
Optional
DelaySpecifies the amount of time (in seconds) to wait before starting the activity. Useful for handling synchronization issues. Integer variables containing the delay duration. Example: If the amount of time is 1000 milliseconds or 1 sec, i.e., 1.
Output
ResultReturns the response as Form Details. Variables of type BatchUpdateFormResponse to store the result.

How to use:

  1. Drag and drop the "Row Question" activity onto the workflow.
  2. Configure the properties by providing the necessary details such as Form ID, Title, Description, Required, Location, Options, Question Titles, and Row Question Type.
  3. Optionally, configure the delay before starting the activity.
  4. Execute the workflow to add the row question to the specified Google Form.

Example:

Consider an example where the "Row Question" activity is used to add a row-based question to a Google Form:

Row Question:
Form ID: formIdVariable
Title: "Rate the following features"
Description: "Please provide your feedback on the following features."
Required: true
Location: 3
Options: "Excellent, Good, Average, Poor"
Question Titles: "Feature1, Feature2, Feature3, Feature4"
Row Question Type: Choice
Result: formResponseVariable

In this example, the activity adds a row question titled "Rate the following features" with options for rating each feature. The question is marked as required and is positioned at index 3 within the form. The individual row question titles are specified for each feature, and the type of row question is set to "Choice." The response is stored in the variable formResponseVariable for further handling.